home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Freeware / Programare / highlight / highlight-W32GUI-2.2-10b-Setup.exe / {app} / src / gui_failure_dlg.h < prev    next >
C/C++ Source or Header  |  2005-02-19  |  2KB  |  38 lines

  1. /***************************************************************************
  2.                      gui_failure_dlg.h  -  description
  3.                              -------------------
  4.     begin                : 19.02.05 
  5.     copyright            : (C) 2005 by AndrΘ Simon
  6.     email                : andre.simon1@gmx.de
  7.  ***************************************************************************/
  8.  
  9. /***************************************************************************
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  ***************************************************************************/
  17.  
  18. #ifndef GUI_FAILURE_DLG
  19. #define GUI_FAILURE_DLG
  20.  
  21. #include <wx/dialog.h>
  22.  
  23. class FailureDlg : public wxDialog {
  24.  
  25. public:      
  26.   FailureDlg(wxWindow* parent, wxWindowID id, const wxString& title,
  27.            const wxString& msgFailedFormat, const wxArrayString& failedFormatFiles,
  28.            const wxString& msgFailedOpen, const wxArrayString& failedOpenFiles,
  29.            const wxString& msgFailedWrite, const wxArrayString& failedWriteFiles); 
  30.            
  31. private:
  32.   void FailureDlg::addErrorFileList(wxSizer* sizer, const wxString& msg, 
  33.                                     const wxArrayString&fileList);
  34.  
  35. };
  36.  
  37. #endif
  38.